home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / BenchMarks / ByteBenchmark / pgms / report.sh < prev    next >
Text File  |  1994-01-27  |  1KB  |  39 lines

  1. ##############################################################################
  2. #  The BYTE UNIX Benchmarks - Release 1
  3. #          Module: report.sh   SID: 1.4 5/15/91 19:30:26
  4. #          
  5. ##############################################################################
  6. # Bug reports, patches, comments, suggestions should be sent to:
  7. #
  8. #    Ben Smith or Tom Yager at BYTE Magazine
  9. #    ben@bytepb.byte.com   tyager@byptepb.byte.com
  10. #
  11. ##############################################################################
  12. # generate an report from test log
  13. #############################################################################
  14. #  Modification Log:
  15. #        created 4/1/91 - Ben Smith
  16. #
  17. ##############################################################################
  18. BINDIR=${BINDIR-pgms}
  19. TARGET=${TARGET-results/log}
  20. # RESULTS TARGET
  21. #
  22. if [ $# -lt 1 ]
  23. then
  24.     echo "Source File for target machine results: \c"
  25.     read TARGET
  26. else
  27.     TARGET=$1
  28. fi
  29. # check for existance
  30. if [ ! -r ${TARGET} ]
  31. then
  32.     echo "Cannot open $TARGET for reading"
  33.     exit 1
  34. fi
  35. awk -f ${BINDIR}/report.awk $TARGET
  36.  
  37.  
  38.